ACTION_CREATE_REMINDER

val ACTION_CREATE_REMINDER: String = "android.intent.action.CREATE_REMINDER"(source)

Activity Action: Creates a reminder.

Input: EXTRA_TITLE The title of the reminder that will be shown to the user. EXTRA_TEXT The reminder text that will be shown to the user. The intent should at least specify a title or a text. EXTRA_TIME The time when the reminder will be shown to the user. The time is specified in milliseconds since the Epoch (optional).

Output: Nothing.

See also